.features-tab {
  background: var(--surface);
}

.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tab-info h3 {
  margin-bottom: 16px;
}

.tab-info p {
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.tab-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow);
}

.features-grid {
  background: white;
}

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

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mobile-content h2 {
  color: white;
  margin-bottom: 16px;
}

.mobile-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.mobile-content .feature-list li {
  color: rgba(255, 255, 255, 0.9);
}

.app-badges {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.mobile-phone {
  max-width: 400px;
  margin: 0 auto;
}

.integrations {
  background: var(--surface);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.integration-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px var(--shadow);
}

.integration-card img {
  width: 48px;
  height: 48px;
}

.integration-card span {
  font-size: 0.875rem;
  font-weight: 500;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .tab-grid,
  .mobile-grid {
    grid-template-columns: 1fr;
  }

  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
