:root {
  --gradient-background-start: rgb(240, 247, 255);
  --gradient-background-end: rgb(255, 255, 255);
  --primary-color: rgb(11, 100, 244);
  --text-color: rgb(9, 9, 11);
  --text-secondary: rgb(107, 114, 126);
  --button-radius: 9999px;
  --card-radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(135deg, var(--gradient-background-start) 0%, var(--gradient-background-end) 100%);
  min-height: 100vh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.btn-primary {
  background: var(--primary-color);
  color: rgb(250, 250, 250);
  padding: 10px 24px;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: rgb(9, 88, 217);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-color);
  padding: 10px 24px;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  padding: 10px 24px;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

main {
  margin-top: 64px;
}

section {
  padding: 80px 0;
}

.hero-section {
  padding: 120px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(var(--first-color), 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: var(--button-radius);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  border: 1px solid rgba(var(--first-color), 0.2);
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgb(120, 180, 255) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.social-proof {
  margin-top: 48px;
}

.proof-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.check-icon, .star-icon {
  color: #10b981;
}

.demo-section {
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.demo-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.demo-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.demo-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.demo-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-style: italic;
}

.demo-video {
  background: rgba(0, 0, 0, 0.8);
  border-radius: var(--card-radius);
  padding: 40px;
  margin: 0 auto;
  max-width: 800px;
}

.video-content {
  color: white;
}

.video-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.video-content p {
  margin-bottom: 24px;
  opacity: 0.8;
}

.dashboard-preview {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-stats {
  display: flex;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
}

.stat-label {
  font-size: 12px;
  opacity: 0.8;
}

.dashboard-chart {
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.comparison-section {
  text-align: center;
}

.comparison-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.comparison-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.comparison-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.comparison-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-column {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.comparison-column.streamrun {
  border: 2px solid var(--primary-color);
}

.comparison-column h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.comparison-column .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.cross-icon {
  color: #ef4444;
}

.features-section {
  background: rgba(255, 255, 255, 0.3);
}

.features-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.features-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.preview-section {
  text-align: center;
}

.preview-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.preview-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.preview-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.preview-section p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.preview-demo {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.demo-dashboard {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgb(120, 180, 255) 100%);
  border-radius: 8px;
  padding: 24px;
  color: white;
}

.demo-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 14px;
  opacity: 0.9;
}

.pricing-section {
  background: rgba(255, 255, 255, 0.3);
  text-align: center;
}

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

.pricing-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.2s ease;
}

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

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 6px 16px;
  border-radius: var(--button-radius);
  font-size: 12px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.price span {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.testimonials-section {
  text-align: center;
}

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

.testimonials-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 14px;
}

.faq-section {
  background: rgba(255, 255, 255, 0.3);
}

.faq-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.faq-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgb(120, 180, 255) 100%);
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-outline {
  border-color: white;
  color: white;
}

.cta-section .btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

footer {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 48px 0 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: var(--primary-color);
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-contact h4,
.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
    line-height: 52px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .comparison-table {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .demo-metrics {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
}

/* Additional styles for new components */
.legal-section {
  padding: 120px 0 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.last-updated {
  color: var(--text-secondary);
  font-size: 16px;
}

.legal-body {
  text-align: left;
}

.legal-section-content {
  margin-bottom: 40px;
}

.legal-section-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.legal-section-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
}

.legal-section-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

.legal-section-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-section-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-section-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-section-content a:hover {
  text-decoration: underline;
}

.contact-section {
  padding: 80px 0;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 16px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 32px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--first-color), 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-text p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.response-time,
.what-to-expect {
  margin-bottom: 32px;
}

.response-time h4,
.what-to-expect h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

.what-to-expect ul {
  list-style: none;
  padding: 0;
}

.what-to-expect li {
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.what-to-expect li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: center;
  margin-top: 24px;
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.success-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
  margin: 0;
}

.success-content p {
  color: var(--text-secondary);
  margin: 0;
}

.features-overview {
  padding: 80px 0;
}

.features-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.features-overview h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 48px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.lead-generation-features {
  background: rgba(255, 255, 255, 0.3);
  padding: 80px 0;
}

.lead-gen-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.lead-generation-features h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 48px;
}

.lead-gen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.lead-gen-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.lead-gen-card:hover {
  transform: translateY(-4px);
}

.lead-gen-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lead-gen-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.lead-gen-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.capability-stats {
  display: flex;
  justify-content: space-around;
  gap: 16px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.social-integration {
  padding: 80px 0;
}

.social-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.social-integration h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.social-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.social-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.platform-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

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

.platform-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.platform-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.platform-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.platform-features {
  list-style: none;
  padding: 0;
}

.platform-features li {
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
}

.platform-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.automation-features {
  background: rgba(255, 255, 255, 0.3);
  padding: 80px 0;
}

.automation-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.automation-features h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 48px;
}

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

.automation-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

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

.automation-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.automation-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.automation-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.automation-benefits {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.benefit-tag {
  background: rgba(var(--first-color), 0.1);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.analytics-features {
  padding: 80px 0;
}

.analytics-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.analytics-features h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.analytics-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.analytics-dashboard {
  margin-bottom: 48px;
}

.dashboard-preview {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.dashboard-preview h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.metric-card {
  background: rgba(var(--first-color), 0.05);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.metric-change {
  font-size: 12px;
  font-weight: 600;
}

.metric-change.positive {
  color: #10b981;
}

.analytics-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.analytics-feature {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.analytics-feature:hover {
  transform: translateY(-4px);
}

.analytics-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.analytics-feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.analytics-feature p {
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .dashboard-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
    line-height: 40px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 100px 0;
  }
  
  .legal-section {
    padding: 100px 0 60px;
  }
  
  .legal-header h1 {
    font-size: 36px;
  }
  
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }
}
